home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-11-11 | 598 b | 31 lines |
- #! smake
-
- include $(ROOT)/usr/include/make/commondefs
-
- TARGETS = ideas
-
- GLDEBUG ?= no
- #if $(GLDEBUG) != "no"
- OPTIMIZER = -g
- #endif
-
- TOOLKITDIR ?= ../
-
- LIBGLUT = $(TOOLKITDIR)/lib/libglut.a
- LLDLIBS = $(LIBGLUT) -lGLU -lGL -lXmu -lXext -lX11 -lm
-
- CFILES = a.c b.c d.c draw_holder.c draw_lamp.c draw_logo.c draw_logo_line.c \
- draw_logo_shadow.c e.c f.c h.c i.c m.c n.c o.c p.c r.c s.c t.c \
- track.c w.c
-
- LCINCS = -I$(TOOLKITDIR)/include
- LCOPTS = -fullwarn -wlint,-f
- LWOFF =,813,852,827,826,756
-
- default: $(TARGET)
-
- include $(COMMONRULES)
-
- $(TARGETS) : $(OBJECTS)
- $(CCF) $(OBJECTS) $(LDFLAGS) -o $@
-